This commit is contained in:
Adam 2023-06-18 19:11:18 -04:00
parent a73f655559
commit 5792a01ca8

6
frontend/Dockerfile Normal file
View file

@ -0,0 +1,6 @@
# syntax=docker/dockerfile:1
FROM node:alpine
COPY . .
CMD ["npm", "run", "start"]
EXPOSE 3000