-
Notifications
You must be signed in to change notification settings - Fork 0
/
Dockerfile
39 lines (29 loc) · 1.05 KB
/
Dockerfile
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
# Use an official Python runtime as a parent image
FROM python:3.8-slim
# Install system dependencies
RUN apt-get update && apt-get install -y \
libgl1-mesa-glx \
libglib2.0-0 \
git \
&& apt-get clean \
&& rm -rf /var/lib/apt/lists/*
# Set the working directory in the container
WORKDIR /app
# Copy the requirements.txt file into the container at /app
COPY requirements.txt /app/
# Install any needed packages specified in requirements.txt
RUN pip install --no-cache-dir -r requirements.txt
# Copy the current directory contents into the container at /app
COPY . /app/
# Ensure permissions for mounted directories
RUN mkdir -p /mnt/data/logs /mnt/data/saved_models && \
chmod -R 777 /mnt/data/logs /mnt/data/saved_models
# Set the environment variable for MOUNTED_CLAIM_DIRECTORY
ARG MOUNTED_CLAIM_DIRECTORY
ENV MOUNTED_CLAIM_DIRECTORY=${MOUNTED_CLAIM_DIRECTORY}
# Set PYTHONPATH
ENV PYTHONPATH=/app
# Make port 80 available to the world outside this container
EXPOSE 80
# Default command to keep the container running
CMD ["sleep", "infinity"]