Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: Dockerfile to reduce vulnerabilities #1972

Closed
wants to merge 11 commits into from
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
FROM python:3.11-slim-bullseye as build
FROM python:3.13.0b1-slim as build
WORKDIR /wheels

COPY requirements.txt /opt/sherlock/
RUN apt-get update \
&& apt-get install -y build-essential \
&& pip3 wheel -r /opt/sherlock/requirements.txt

FROM python:3.11-slim-bullseye
FROM python:3.13.0b1-slim
WORKDIR /opt/sherlock

ARG VCS_REF
Expand Down
Loading