-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathDockerfile
52 lines (40 loc) · 1.31 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
40
41
42
43
44
45
46
47
48
49
50
51
52
# Use an official Python runtime as a parent image
FROM python:3.9.18-slim
# Create a non-root user
RUN useradd -m user
# Set the working directory for user
WORKDIR /home/user
# Switch to root user to install dependencies
USER root
# Install necessary dependencies including Chrome
RUN apt-get update && \
apt-get install -y \
postgresql-client \
postgresql-server-dev-all \
build-essential \
curl \
wget \
gnupg && \
# Download and install Google Chrome
wget https://dl.google.com/linux/direct/google-chrome-stable_current_amd64.deb && \
apt-get install -y ./google-chrome-stable_current_amd64.deb && \
rm google-chrome-stable_current_amd64.deb && \
apt-get clean && \
rm -rf /var/lib/apt/lists/*
# Switch to the non-root user user
USER user
# Install poetry
RUN curl -sSL https://install.python-poetry.org | python3 -
# Set up poetry environment variables
ENV PATH="/home/user/.local/bin:${PATH}"
# Upgrade pip to latest version
RUN pip install --upgrade pip
# Copy the rest of the application code
WORKDIR /usr/src/app
COPY . /usr/src/app
# Switch to root user to install dependencies
USER root
# Update the poetry lock file and install dependencies
RUN poetry lock --no-update && poetry install --no-root
# Switch to the non-root user user
USER user