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
Merge branch 'release' of
http://git.dilig.net/selenaaasi/trampa-frontend
into release
feature/646
Djordje Mitrovic
3 years ago
parent
947031eb79
e43d0c2701
commit
96cb1a21ec
1 changed files
with
17 additions
and
0 deletions
Split View
Show Diff Stats
17
0
Dockerfile
+ 17
- 0
Dockerfile
View File
@@ -0,0 +1,17 @@
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