File size: 1,814 Bytes
e158b55
 
 
 
 
 
 
63a281c
ab54553
f065d33
 
e158b55
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1594e30
 
1a55725
e158b55
 
1594e30
98eac4a
 
 
 
e158b55
 
 
 
 
 
2a90ed9
 
 
c9a473f
 
 
2a90ed9
e158b55
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
FROM nvidia/cuda:12.0.0-cudnn8-devel-ubuntu22.04

# Using the Ubuntu image (our OS)
# Update package manager (apt-get) 
# and install (with the yes flag `-y`)
# Python and Pip
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

# Set up a new user named "user" with user ID 1000
RUN useradd -m -u 1000 user

# Switch to the "user" user
USER user

# Set home to the user's home directory
ENV HOME=/home/user \
    PATH=/home/user/.local/bin:$PATH

# Set the working directory to the user's home directory
WORKDIR $HOME/app

# Download and uzip truepic-sign from Google Drive
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 the current directory contents into the container at $HOME/app setting the owner to the user
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"]