Skip to content

Commit 863bf6b

Browse files
fix: pin to bullseye docker image (#69)
* fix: remove upx Upx has been removed from the debian repos and is causing builds to fail. For now, remove upx and let's see if this increases image size dramatically * fix: readd upx, pin to bullseye
1 parent f7f3ff3 commit 863bf6b

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Dockerfile

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
1-
FROM python:3.11-slim AS builder
1+
FROM python:3.11-slim-bullseye AS builder
22
WORKDIR /app
33

44
# install build requirements
5-
RUN apt-get update && apt-get install -y binutils patchelf upx build-essential scons
5+
RUN apt-get update && apt-get install -y binutils patchelf build-essential scons upx
66

77
# copy the app
88
COPY ./ /app

0 commit comments

Comments
 (0)