Compare commits

...

2 commits

Author SHA1 Message Date
Erick Ruiz de Chavez
a342ad0842 Add missing network config 2024-05-04 15:33:40 -04:00
Erick Ruiz de Chavez
332fec136e Add Docker configuration 2024-05-04 15:11:37 -04:00
3 changed files with 20 additions and 0 deletions

2
.dockerignore Normal file
View file

@ -0,0 +1,2 @@
node_modules
vendor

5
Dockerfile Normal file
View file

@ -0,0 +1,5 @@
FROM node:14-alpine
WORKDIR /app
COPY . .
RUN npm ci
ENTRYPOINT [ "node", "index.js" ]

13
docker-compose.yml Normal file
View file

@ -0,0 +1,13 @@
services:
node:
build:
context: .
restart: always
ports:
- 8081:8081
networks:
- palmiers
networks:
palmiers:
external: true