mirror of
https://github.com/docker/awesome-compose.git
synced 2025-04-29 07:38:02 +02:00
Added frontend
Signed-off-by: GitHub <noreply@github.com>
This commit is contained in:
parent
ecef5caea7
commit
4d1e8e9f00
22 changed files with 13175 additions and 0 deletions
24
react-aspnet-mongodb/frontend/Dockerfile
Normal file
24
react-aspnet-mongodb/frontend/Dockerfile
Normal file
|
@ -0,0 +1,24 @@
|
|||
# Create image based on the official Node image from dockerhub
|
||||
FROM node:lts-buster
|
||||
|
||||
# Create app directory
|
||||
WORKDIR /usr/src/app
|
||||
|
||||
# Copy dependency definitions
|
||||
COPY package.json /usr/src/app
|
||||
COPY package-lock.json /usr/src/app
|
||||
|
||||
# Install dependecies
|
||||
#RUN npm set progress=false \
|
||||
# && npm config set depth 0 \
|
||||
# && npm i install
|
||||
RUN npm ci
|
||||
|
||||
# Get all the code needed to run the app
|
||||
COPY . /usr/src/app
|
||||
|
||||
# Expose the port the app runs in
|
||||
EXPOSE 3000
|
||||
|
||||
# Serve the app
|
||||
CMD ["npm", "start"]
|
Loading…
Add table
Add a link
Reference in a new issue