Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,17 +1,17 @@
FROM node:12-alpine
FROM node:14-alpine

WORKDIR /usr/src/app

COPY package.json package-lock.json ./

RUN apk add --no-cache make gcc g++ python && \
RUN apk add --no-cache make gcc g++ python3 && \
npm install --production --silent && \
npm install pm2 -g && \
npm cache clean --force && \
apk del make gcc g++ python
apk del make gcc g++ python3

RUN mkdir input output

COPY src/ ./src/

CMD ["pm2-runtime", "src/agent.js"]
CMD ["pm2-runtime", "src/agent.js"]
19 changes: 0 additions & 19 deletions docker-compose.yaml

This file was deleted.

Loading