You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
25 lines
570 B
Plaintext
25 lines
570 B
Plaintext
4 years ago
|
FROM node:15-alpine
|
||
|
LABEL maintainer="Jakub Pieńkowski <jakski@sealcode.org>"
|
||
|
|
||
|
ENV UID=node \
|
||
|
GID=node \
|
||
3 years ago
|
HOME=/opt/sealious-playground
|
||
4 years ago
|
|
||
|
RUN sed -i 's/http\:\/\/dl-cdn.alpinelinux.org/https\:\/\/mirrors.dotsrc.org/g' /etc/apk/repositories
|
||
|
# Tini will ensure that any orphaned processes get reaped properly.
|
||
|
RUN apk add --no-cache tini
|
||
|
RUN apk --update add git
|
||
|
RUN apk --update add python
|
||
|
RUN apk --update add make
|
||
|
RUN apk --update add g++
|
||
|
|
||
|
VOLUME $HOME
|
||
|
WORKDIR $HOME
|
||
|
|
||
|
USER $UID:$GID
|
||
|
|
||
|
EXPOSE 8080
|
||
|
|
||
|
ENTRYPOINT ["/sbin/tini", "--"]
|
||
|
CMD ["/usr/local/bin/node", "."]
|