Skip to content

Commit e88c53e

Browse files
author
amishcon
committed
node.js services
1 parent 1e566d1 commit e88c53e

File tree

292 files changed

+23286
-0
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

292 files changed

+23286
-0
lines changed

api/Dockerfile

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
FROM node:alpine
2+
RUN apk add --no-cache make gcc g++ python
3+
RUN mkdir -p /usr/src/pixi/api
4+
WORKDIR /usr/src/pixi/api
5+
COPY package.json /usr/src/pixi/api
6+
7+
8+
RUN npm install --save
9+
10+
COPY . /usr/src/pixi/api
11+
12+
RUN npm install -g nodemon
13+
14+
EXPOSE 8080
15+
16+
17+
CMD ["nodemon", "/usr/src/pixi/api/api.js"]

0 commit comments

Comments
 (0)