Skip to content
This repository was archived by the owner on May 16, 2022. It is now read-only.

Commit 08b319a

Browse files
committed
Initial stuff
1 parent 24c0f0e commit 08b319a

File tree

5 files changed

+1358
-0
lines changed

5 files changed

+1358
-0
lines changed

.gitignore

+2
Original file line numberDiff line numberDiff line change
@@ -102,3 +102,5 @@ dist
102102

103103
# TernJS port file
104104
.tern-port
105+
106+
.env

Dockerfile

+12
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
FROM node:lts-alpine
2+
3+
WORKDIR /usr/src/app
4+
5+
COPY package*.json ./
6+
7+
RUN npm install
8+
COPY . .
9+
10+
EXPOSE 80
11+
12+
CMD [ "node", "src/index.js" ]

0 commit comments

Comments
 (0)