mirror of
https://github.com/sherlock-project/sherlock
synced 2024-11-21 19:33:02 +00:00
Refresh Dockerfile
This commit is contained in:
parent
501cb3dce2
commit
448da43bf7
1 changed files with 18 additions and 14 deletions
32
Dockerfile
32
Dockerfile
|
@ -1,25 +1,29 @@
|
|||
FROM python:3.11-slim-bullseye as build
|
||||
WORKDIR /wheels
|
||||
# Release instructions:
|
||||
# 1. Update the version tag in the Dockerfile to match the version in sherlock/__init__.py
|
||||
# 2. Update the VCS_REF tag to match the tagged version's FULL commit hash
|
||||
# 3. Build image with BOTH latest and version tags
|
||||
# i.e. `docker build -t sherlock/sherlock:0.15.0 -t sherlock/sherlock:latest .`
|
||||
|
||||
FROM python:3.12-slim-bullseye as build
|
||||
WORKDIR /sherlock
|
||||
|
||||
COPY requirements.txt /opt/sherlock/
|
||||
RUN apt-get update \
|
||||
&& apt-get install -y build-essential \
|
||||
&& pip3 wheel -r /opt/sherlock/requirements.txt
|
||||
pip3 install --no-cache-dir --upgrade pip
|
||||
|
||||
FROM python:3.11-slim-bullseye
|
||||
WORKDIR /opt/sherlock
|
||||
FROM python:3.12-slim-bullseye
|
||||
WORKDIR /sherlock
|
||||
|
||||
ARG VCS_REF
|
||||
ARG VCS_REF= # CHANGE ME ON UPDATE
|
||||
ARG VCS_URL="https://github.com/sherlock-project/sherlock"
|
||||
ARG VERSION_TAG= # CHANGE ME ON UPDATE
|
||||
|
||||
LABEL org.label-schema.vcs-ref=$VCS_REF \
|
||||
org.label-schema.vcs-url=$VCS_URL
|
||||
org.label-schema.vcs-url=$VCS_URL \
|
||||
org.label-schema.name="Sherlock" \
|
||||
org.label-schema.version=$VERSION_TAG \
|
||||
website="https://sherlockproject.xyz"
|
||||
|
||||
COPY --from=build /wheels /wheels
|
||||
COPY . /opt/sherlock/
|
||||
|
||||
RUN pip3 install --no-cache-dir . -f /wheels \
|
||||
&& rm -rf /wheels
|
||||
RUN pip3 install --no-cache-dir sherlock-project==$VERSION_TAG
|
||||
|
||||
WORKDIR /opt/sherlock/sherlock
|
||||
|
||||
|
|
Loading…
Reference in a new issue