Skip to content

Commit

Permalink
fix: pin to bullseye docker image (#69)
Browse files Browse the repository at this point in the history
* 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
  • Loading branch information
andrewthetechie authored Jul 5, 2023
1 parent f7f3ff3 commit 863bf6b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
FROM python:3.11-slim AS builder
FROM python:3.11-slim-bullseye AS builder
WORKDIR /app

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

# copy the app
COPY ./ /app
Expand Down

0 comments on commit 863bf6b

Please sign in to comment.