Rename Dockerfile to Containerfile

This commit is contained in:
Jonathan Cremin 2025-05-20 13:36:55 +01:00
parent 712424a56a
commit e9b83d1e09
2 changed files with 0 additions and 0 deletions

17
Containerfile Normal file
View file

@ -0,0 +1,17 @@
FROM node:14.2.0
WORKDIR /app
COPY package.json package.json
COPY yarn.lock yarn.lock
RUN yarn
COPY . .
RUN yarn run build
ENV PORT 3000
EXPOSE 3000
CMD ["yarn", "start"]