strona-czynna/docker/test.Dockerfile
Kuba Orlik 651cd48220 Bring the repo up to speed with our recent developments
Summary:
Remove redundant files

User login fixes

Reviewers: #reviewers

Subscribers: jenkins-user

Differential Revision: https://hub.sealcode.org/D1253
2022-07-31 23:01:24 +02:00

25 lines
437 B
Docker

FROM node:18-bullseye-slim
ENV UID=node \
GID=node \
HOME=/opt/sealious-app
# Tini will ensure that any orphaned processes get reaped properly.
ENV TINI_VERSION v0.19.0
ADD https://github.com/krallin/tini/releases/download/${TINI_VERSION}/tini /tini
RUN apt update
RUN apt install -y git
RUN chmod +x /tini
ENTRYPOINT ["/tini", "--"]
VOLUME $HOME
WORKDIR $HOME
USER $UID:$GID
EXPOSE 8080
CMD ["/usr/local/bin/node", "."]