mirror of
https://github.com/sherlock-project/sherlock
synced 2024-11-15 08:47:08 +00:00
a5dda7ae91
There's no need to wait and waste the time and bandwidth to wait for `apt-get update` for `pip3 install` ;)
31 lines
970 B
Docker
31 lines
970 B
Docker
# 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
|
|
|
|
RUN pip3 install --no-cache-dir --upgrade pip
|
|
|
|
FROM python:3.12-slim-bullseye
|
|
WORKDIR /sherlock
|
|
|
|
ARG VCS_REF= # CHANGE ME ON UPDATE
|
|
ARG VCS_URL="https://github.com/sherlock-project/sherlock"
|
|
ARG VERSION_TAG= # CHANGE ME ON UPDATE
|
|
|
|
ENV SHERLOCK_ENV=docker
|
|
|
|
LABEL org.label-schema.vcs-ref=$VCS_REF \
|
|
org.label-schema.vcs-url=$VCS_URL \
|
|
org.label-schema.name="Sherlock" \
|
|
org.label-schema.version=$VERSION_TAG \
|
|
website="https://sherlockproject.xyz"
|
|
|
|
RUN pip3 install --no-cache-dir sherlock-project==$VERSION_TAG
|
|
|
|
WORKDIR /sherlock
|
|
|
|
ENTRYPOINT ["sherlock"]
|