Rename Dockerfile to Containerfile
This commit is contained in:
parent
712424a56a
commit
e9b83d1e09
2 changed files with 0 additions and 0 deletions
17
Containerfile
Normal file
17
Containerfile
Normal 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"]
|
Loading…
Add table
Add a link
Reference in a new issue