Add Dockerfile

This commit is contained in:
Lucien Astié 2024-08-08 23:28:10 +02:00
parent 48866cc6ab
commit ada0fa5ae8

View file

@ -0,0 +1,9 @@
# syntax=docker/dockerfile:1
FROM node:18-alpine
WORKDIR /app
COPY package*.json ./
RUN npm install
COPY . .
CMD ["node", "server.mjs"]
EXPOSE 3000