mirror of
https://github.com/yldio/copilot.git
synced 2024-11-10 21:30:06 +02:00
deploy: Cleaning up background
This commit is contained in:
parent
7a4808bd10
commit
9ace49d0b7
@ -1,32 +1 @@
|
||||
FROM node:slim
|
||||
|
||||
RUN set -x \
|
||||
&& apt-key adv --keyserver pgp.mit.edu --recv D101F7899D41F3C3 \
|
||||
&& echo "deb http://dl.yarnpkg.com/debian/ stable main" | tee /etc/apt/sources.list.d/yarn.list \
|
||||
&& apt-get update && apt-get install -y git yarn --no-install-recommends \
|
||||
&& rm -rf /var/lib/apt/lists/* \
|
||||
&& groupadd -g 433 -r nodejs \
|
||||
&& useradd -u 431 -r -g nodejs -d /home/nodejs -s /sbin/nologin -c "Docker image user" nodejs \
|
||||
&& mkdir -p /home/nodejs/
|
||||
|
||||
# Get and configure containerpilot
|
||||
ENV CONTAINERPILOT_VERSION 2.4.3
|
||||
ENV CONTAINERPILOT file:///etc/containerpilot.json
|
||||
|
||||
RUN export CP_SHA1=2c469a0e79a7ac801f1c032c2515dd0278134790 \
|
||||
&& curl -Lo /tmp/containerpilot.tar.gz \
|
||||
"https://github.com/joyent/containerpilot/releases/download/${CONTAINERPILOT_VERSION}/containerpilot-${CONTAINERPILOT_VERSION}.tar.gz" \
|
||||
&& echo "${CP_SHA1} /tmp/containerpilot.tar.gz" | sha1sum -c \
|
||||
&& tar zxf /tmp/containerpilot.tar.gz -C /bin \
|
||||
&& rm /tmp/containerpilot.tar.gz
|
||||
|
||||
COPY ./etc/containerpilot.json /etc/
|
||||
|
||||
WORKDIR /home/nodejs/
|
||||
COPY package.json yarn.lock ./
|
||||
COPY . .
|
||||
RUN chown -R nodejs:nodejs /home/nodejs/
|
||||
USER nodejs
|
||||
RUN yarn
|
||||
|
||||
CMD [ "/bin/containerpilot", "node", "src/index.js" ]
|
||||
FROM quay.io/yldio/alpine-node-containerpilot:latest
|
||||
|
Loading…
Reference in New Issue
Block a user