generated from esd2-groupwork/template-repository
Completed initial proof of concept; finished initialisation of project with necessary dependencies. Reviewed-on: #4 Reviewed-by: Isaacsouthwell <ias4117@rit.edu> Co-authored-by: Blizzard Finnegan <blizzardfinnegan@gmail.com> Co-committed-by: Blizzard Finnegan <blizzardfinnegan@gmail.com>
12 lines
158 B
Docker
12 lines
158 B
Docker
FROM node:20.10.0 as frontend-build
|
|
|
|
ENV NODE_ENV production
|
|
|
|
WORKDIR /app
|
|
COPY . /app/
|
|
|
|
RUN npm install --ignore-scripts
|
|
|
|
EXPOSE 3000
|
|
|
|
CMD ["npm", "start"]
|