Skip to content
Open
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
29 changes: 15 additions & 14 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -6,17 +6,17 @@ WORKDIR /usr/src/app

RUN apt-get update \
&& apt-get install -y --no-install-recommends \
build-essential \
ca-certificates \
curl \
git \
gnupg2 \
jq \
python3 \
ssh \
wget \
libffi-dev \
zlib1g-dev \
build-essential \
ca-certificates \
curl \
git \
gnupg2 \
jq \
python3 \
ssh \
wget \
libffi-dev \
zlib1g-dev \
&& apt-get clean \
&& mkdir -p /root/ssh \
&& ssh-keyscan -H github.com > /root/ssh/known_hosts
Expand All @@ -30,7 +30,7 @@ FROM node:${NODE_VERSION}

RUN apt-get update && \
apt-get install -y --no-install-recommends \
jq \
jq \
&& rm -rf /var/lib/apt/lists/*

ENV NO_PROXY localhost,127.0.0.1
Expand All @@ -41,8 +41,9 @@ EXPOSE 8002

RUN apt-get update && \
apt-get install -y --no-install-recommends \
jq \
tini \
jq \
tini \
openssl \
&& rm -rf /var/lib/apt/lists/*

WORKDIR /usr/src/app
Expand Down