This website works better with JavaScript.
Home
Explore
Help
Register
Sign In
selenaaasi
/
trampa-frontend
Watch
1
Star
0
Fork
0
Code
Issues
0
Pull Requests
0
Releases
0
Wiki
Activity
Browse Source
Dockerfile
feature/646
radivoje.milutinovic
3 years ago
parent
b2c77225fc
commit
e43d0c2701
1 changed files
with
17 additions
and
0 deletions
Unified View
Show Diff Stats
17
0
Dockerfile
+ 17
- 0
Dockerfile
View File
FROM node:16
WORKDIR ./src
COPY package*.json ./
COPY src ./
COPY public ./
RUN npm install
ENV NODE_ENV='docker'
# Bundle app source
COPY . .
EXPOSE 3000
CMD [ "npm", "start" ]
Write
Preview
Loading…
Cancel
Save