Browse Source
ci: use apt-get, remove redundant curl
Signed-off-by: rare-magma <rare-magma@posteo.eu>
pull/3621/head
rare-magma
1 year ago
Failed to extract signature
1 changed files with
2 additions and
4 deletions
-
Dockerfile
|
|
@ -12,7 +12,7 @@ COPY ./yarn.lock yarn.lock |
|
|
|
COPY ./.yarnrc .yarnrc |
|
|
|
COPY ./prisma/schema.prisma prisma/schema.prisma |
|
|
|
|
|
|
|
RUN apt update && apt install -y \ |
|
|
|
RUN apt-get update && apt-get install -y \ |
|
|
|
g++ \ |
|
|
|
git \ |
|
|
|
make \ |
|
|
@ -54,9 +54,7 @@ FROM node:20-slim |
|
|
|
|
|
|
|
LABEL org.opencontainers.image.source="https://github.com/ghostfolio/ghostfolio" |
|
|
|
|
|
|
|
RUN apt update && apt install -y \ |
|
|
|
curl \ |
|
|
|
openssl \ |
|
|
|
RUN apt-get update && apt-get install -y openssl \ |
|
|
|
&& rm -rf /var/lib/apt/lists/* |
|
|
|
|
|
|
|
COPY --from=builder /ghostfolio/dist/apps /ghostfolio/apps |
|
|
|