Skip to content

Commit

Permalink
ca-certs
Browse files Browse the repository at this point in the history
  • Loading branch information
ludeeus committed Jul 21, 2020
1 parent e5bbb86 commit 8e4af3f
Showing 1 changed file with 4 additions and 5 deletions.
9 changes: 4 additions & 5 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,6 +1,4 @@
# Build the NetDaemon with build container
#mcr.microsoft.com/dotnet/core/sdk:3.1.200
#ludeeus/container:dotnet-base
FROM mcr.microsoft.com/dotnet/core/sdk:3.1.302

# Copy the source to docker container
Expand All @@ -10,12 +8,13 @@ COPY ./src /usr/src
COPY ./Docker/rootfs/etc /etc

# Install S6 and the Admin site
RUN \
wget -q -O /s6 \
RUN apt update && apt install -y ca-certificates \
\
&& wget -q -O /s6 \
https://raw.githubusercontent.com/ludeeus/container/master/rootfs/s6/install \
&& bash /s6 \
\
&& curl -sS https://dl.yarnpkg.com/debian/pubkey.gpg | APT_KEY_DONT_WARN_ON_DANGEROUS_USAGE=DontWarn apt-key add - \
&& curl -sS https://dl.yarnpkg.com/debian/pubkey.gpg | apt-key add - \
&& echo "deb https://dl.yarnpkg.com/debian/ stable main" | tee /etc/apt/sources.list.d/yarn.list \
\
&& apt update && apt install -y \
Expand Down

0 comments on commit 8e4af3f

Please sign in to comment.