-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathDockerfile
78 lines (56 loc) · 2.33 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
# Use an official Python runtime as a parent image for the backend
FROM python:3.12.2-slim as backend-builder
# Install system dependencies required for psycopg2, asyncpg, and other backend dependencies
RUN apt-get update && apt-get install -y libpq-dev gcc
# Set the working directory in the container for the backend
WORKDIR /app/backend
# Copy the backend directory contents into the container at /app/backend
COPY ./backend /app/backend
RUN rm -f /app/backend/db/app.db
# Install any needed packages specified in backend/requirements_versioned.txt
RUN pip install --no-cache-dir -r requirements_versioned.txt
# Use Node.js official image for the frontend
FROM node:22 as frontend-builder
# Set the working directory in the container for the frontend
WORKDIR /app
# Copy the VERSION and config file first so they can be used by Nuxt
COPY ./VERSION /app/VERSION
COPY ./bow-config.yaml /app/bow-config.yaml
# Copy the frontend directory contents
COPY ./frontend /app/frontend
# Set working directory for frontend
WORKDIR /app/frontend
# Install frontend dependencies and build the project
RUN yarn install
RUN yarn build
# Final image
FROM python:3.12.2-slim
# Install Node.js and Yarn in the final image
RUN apt-get update && apt-get install -y curl libpq-dev gcc git && \
curl -sL https://deb.nodesource.com/setup_21.x | bash - && \
apt-get install -y nodejs && \
npm install --global yarn
RUN mkdir -p /app/backend/db && \
chown -R nobody:nogroup /app
# Copy backend and frontend builds from their respective builder images
COPY --from=backend-builder /app/backend /app/backend
COPY --from=frontend-builder /app/frontend /app/frontend
# Install Python dependencies globally
COPY ./backend/requirements_versioned.txt /app/backend/
RUN pip install --no-cache-dir -r /app/backend/requirements_versioned.txt
# Set the working directory to /app for CMD execution
WORKDIR /app
COPY ./VERSION /app/VERSION
COPY ./start.sh /app/start.sh
COPY ./bow-config.yaml /app/bow-config.yaml
# Set executable permissions for start.sh
RUN chmod +x /app/start.sh
# Define environment variable for Node to run in production mode
ENV NODE_ENV=production
ENV ENVIRONMENT=production
# Add these before the CMD
ENV PYTHONUNBUFFERED=1
ENV PYTHONIOENCODING=UTF-8
# Expose ports (not required by Heroku, but useful for local development)
EXPOSE 3000
CMD ["/bin/bash", "start.sh"]