Skip to content

Commit

Permalink
stats-updater: Fix Dockerfile
Browse files Browse the repository at this point in the history
  • Loading branch information
bperel committed Aug 18, 2024
1 parent 386da8b commit 4f1d1c6
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions apps/stats-updater/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@ FROM oven/bun
LABEL org.opencontainers.image.authors="Bruno Perel"

WORKDIR /app
RUN apt-get update && apt-get install -y curl && apt-get clean && rm -rf /var/lib/apt/lists/*
RUN apt-get update && apt-get install -y wget && apt-get clean && rm -rf /var/lib/apt/lists/*

RUN curl -fsSL https://get.pnpm.io/install.sh | sh -
RUN wget -qO- https://get.pnpm.io/install.sh | ENV="$HOME/.bashrc" SHELL="$(which bash)" bash -

COPY apps/stats-updater/bundle.mjs /app/

Expand Down

0 comments on commit 4f1d1c6

Please sign in to comment.