2
0
mirror of https://github.com/thumbsup/thumbsup synced 2024-11-13 01:10:49 +00:00

fix: invalid python Alpine package in Docker image

This commit is contained in:
Romain 2022-09-05 20:25:15 +00:00
parent 5ac29d3c9d
commit 30388c593c

View File

@ -11,7 +11,7 @@ FROM ghcr.io/thumbsup/runtime:node-${NODE_VERSION}
LABEL org.opencontainers.image.source https://github.com/thumbsup/thumbsup
# Standard build dependencies for npm install
RUN apk add --no-cache git make g++ python bash
RUN apk add --no-cache git make g++ python3 bash
# Pre-install expensive dependencies
WORKDIR /app