mirror of
https://github.com/HeyPuter/puter.git
synced 2025-12-30 09:40:00 -06:00
add dockerfiles
This commit is contained in:
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
|
||||
Reference in New Issue
Block a user