Skip to content

Commit f2927d9

Browse files
committed
Initial Commit
1 parent 5ba5d87 commit f2927d9

8 files changed

+1357
-0
lines changed

.dockerignore

+7
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
node_modules
2+
npm-debug.log
3+
uploads/*
4+
.env
5+
.git
6+
.gitignore
7+
README.md

.gitignore

+2
Original file line numberDiff line numberDiff line change
@@ -128,3 +128,5 @@ dist
128128
.yarn/build-state.yml
129129
.yarn/install-state.gz
130130
.pnp.*
131+
132+
uploads/

Dockerfile

+15
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
FROM node:18-alpine
2+
3+
WORKDIR /app
4+
5+
COPY package*.json ./
6+
7+
RUN npm install
8+
9+
COPY . .
10+
11+
RUN mkdir -p uploads
12+
13+
EXPOSE 3000
14+
15+
CMD ["node", "server.js"]

0 commit comments

Comments
 (0)