piston/api/Dockerfile

16 lines
424 B
Docker
Raw Normal View History

2021-02-20 15:13:56 +01:00
FROM node:15.8.0-alpine3.13
2021-02-22 11:15:04 +01:00
RUN apk add --no-cache gnupg tar bash coreutils shadow util-linux
RUN userdel -r node
RUN for i in $(seq 1000 1500); do \
groupadd -g $i runner$i && \
useradd -M runner$i -g $i -u $i ; \
done
2021-02-20 15:13:56 +01:00
ENV NODE_ENV=production
WORKDIR /piston_api
COPY ["package.json", "yarn.lock", "./"]
RUN yarn
COPY ./src ./src
CMD [ "node", "src", "-m", "-c", "/piston/config.yaml"]
EXPOSE 6969/tcp