We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 249edd9 commit 78d3727Copy full SHA for 78d3727
1 file changed
Dockerfile
@@ -19,12 +19,10 @@ RUN npm run webpack
19
FROM docker.io/python:3.12-slim-bookworm
20
MAINTAINER Computer Science House <webmaster@csh.rit.edu>
21
22
-RUN mkdir /opt/conditional
+WORKDIR /opt/conditional
23
24
COPY requirements.txt /opt/conditional
25
26
-WORKDIR /opt/conditional
27
-
28
RUN apt-get -yq update && \
29
apt-get -yq install libsasl2-dev libldap2-dev libldap-common libssl-dev gcc g++ make && \
30
pip install -r requirements.txt && \
@@ -35,6 +33,7 @@ ENV PORT=${PORT}
35
33
EXPOSE ${PORT}
36
34
37
COPY conditional /opt/conditional/conditional
+COPY migrations /opt/conditional/migrations
38
COPY *.py package.json /opt/conditional/
39
COPY --from=build-frontend /opt/conditional/conditional/static/ /opt/conditional/conditional/static/
40
0 commit comments