-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathDockerfile
40 lines (31 loc) · 1.07 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
FROM python:3.11-slim
# Set environment variables
ENV DBT_PROFILES_DIR=/app/dbt/
ENV DUCKDB_LOCATION=/app/database/dwh.duckdb
# Set the working directory
WORKDIR /app
# Install Node.js & git
RUN apt-get update && apt-get install -y curl sudo
RUN curl -sL https://deb.nodesource.com/setup_20.x | bash -
RUN apt-get install -y nodejs
RUN apt-get install -y git
RUN apt-get install -y build-essential
# Copy the requirements file and install dependencies
COPY requirements.txt .
RUN pip install -r requirements.txt
# Copy the rest of the application code
COPY . .
# Add build argument for development mode
ARG DEVELOPMENT_MODE=false
# Conditional user setup for development
RUN if [ "$DEVELOPMENT_MODE" = "true" ]; then \
groupadd --gid 1000 vscode && \
useradd --uid 1000 --gid 1000 -m vscode && \
chown -R vscode:vscode /app; \
fi
# Expose port 8080 for Cloud Run (and 8501 for local Streamlit)
EXPOSE 8080 8501
# Use an entrypoint script to determine how to run the app
COPY entrypoint.sh /entrypoint.sh
RUN chmod +x /entrypoint.sh
ENTRYPOINT ["/entrypoint.sh"]