Skip to content

Commit

Permalink
docker - add missing cargo build dependency
Browse files Browse the repository at this point in the history
  • Loading branch information
fl0ppy-d1sk committed Mar 25, 2024
1 parent 5627498 commit ec5803c
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/autoconf/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
FROM python:3.12.2-alpine3.19@sha256:25a82f6f8b720a6a257d58e478a0a5517448006e010c85273f4d9c706819478c as builder

# Install python dependencies
RUN apk add --no-cache build-base libffi-dev postgresql-dev
RUN apk add --no-cache build-base libffi-dev postgresql-dev cargo

# Copy python requirements
COPY src/deps/requirements.txt /tmp/requirements-deps.txt
Expand Down
2 changes: 1 addition & 1 deletion src/scheduler/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
FROM python:3.12.2-alpine3.19@sha256:25a82f6f8b720a6a257d58e478a0a5517448006e010c85273f4d9c706819478c as builder

# Install python dependencies
RUN apk add --no-cache build-base libffi-dev postgresql-dev
RUN apk add --no-cache build-base libffi-dev postgresql-dev cargo

# Copy python requirements
COPY src/deps/requirements.txt /tmp/requirements-deps.txt
Expand Down
2 changes: 1 addition & 1 deletion src/ui/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
FROM python:3.12.2-alpine3.19@sha256:25a82f6f8b720a6a257d58e478a0a5517448006e010c85273f4d9c706819478c as builder

# Install python dependencies
RUN apk add --no-cache build-base libffi-dev postgresql-dev
RUN apk add --no-cache build-base libffi-dev postgresql-dev cargo

# Copy python requirements
COPY src/deps/requirements.txt /tmp/requirements-deps.txt
Expand Down

0 comments on commit ec5803c

Please sign in to comment.