mirror of
https://github.com/HeyPuter/puter.git
synced 2025-01-23 06:00:21 +08:00
add dockerfiles
This commit is contained in:
parent
2d463966a2
commit
4f2c03e23b
6
Dockerfile
Normal file
6
Dockerfile
Normal file
@ -0,0 +1,6 @@
|
||||
FROM node:hydrogen-alpine
|
||||
WORKDIR /app
|
||||
COPY . .
|
||||
RUN yarn install
|
||||
CMD ["node", "dev-server.js"]
|
||||
EXPOSE 4000
|
7
docker-compose.yml
Normal file
7
docker-compose.yml
Normal file
@ -0,0 +1,7 @@
|
||||
version: '3'
|
||||
|
||||
services:
|
||||
app:
|
||||
build: ./
|
||||
ports:
|
||||
- 4000:4000
|
Loading…
Reference in New Issue
Block a user