|
FROM nvidia/cuda:12.0.0-cudnn8-devel-ubuntu22.04 |
|
|
|
|
|
|
|
|
|
|
|
RUN apt-get update && apt-get install -y \ |
|
python3-pip \ |
|
unzip \ |
|
jq \ |
|
curl |
|
|
|
|
|
WORKDIR /code |
|
|
|
COPY ./requirements.txt /code/requirements.txt |
|
|
|
RUN pip install --no-cache-dir --upgrade -r /code/requirements.txt |
|
|
|
|
|
RUN useradd -m -u 1000 user |
|
|
|
|
|
USER user |
|
|
|
|
|
ENV HOME=/home/user \ |
|
PATH=/home/user/.local/bin:$PATH |
|
|
|
|
|
WORKDIR $HOME/app |
|
|
|
|
|
RUN pip install gdown |
|
RUN --mount=type=secret,id=truepic_sign_gdoc_id,mode=0444,required=true \ |
|
gdown --id $(cat /run/secrets/truepic_sign_gdoc_id) |
|
RUN unzip truepic-lens-cli-51f4cfbc6472a2205e53d726713619ca8df5340b-ubuntu-20.04.zip |
|
RUN tar -xf truepic-lens-cli-51f4cfbc6472a2205e53d726713619ca8df5340b-ubuntu-20.04.tar.gz |
|
|
|
RUN chmod +x truepic |
|
|
|
RUN --mount=type=secret,id=api_key,mode=0444,required=true \ |
|
./truepic enroll file-system --api-key $(cat /run/secrets/api_key) --profile truepic |
|
|
|
RUN --mount=type=secret,id=steg_profile_api_key,mode=0444,required=true \ |
|
./truepic enroll file-system --api-key $(cat /run/secrets/steg_profile_api_key) --profile steg |
|
|
|
|
|
COPY --chown=user . $HOME/app |
|
|
|
WORKDIR $HOME/app |
|
|
|
RUN chmod +x scripts/sign.sh |
|
RUN chmod +x scripts/verify.sh |
|
RUN chmod +x scripts/upload.sh |
|
RUN chmod +w scripts/sign.sh |
|
RUN chmod +w scripts/verify.sh |
|
RUN chmod +w scripts/upload.sh |
|
|
|
CMD ["uvicorn", "main:app", "--host", "0.0.0.0", "--port", "7860"] |