File tree Expand file tree Collapse file tree 1 file changed +8
-7
lines changed
Expand file tree Collapse file tree 1 file changed +8
-7
lines changed Original file line number Diff line number Diff line change 11FROM node:25-bookworm-slim AS build-frontend
22
3- RUN mkdir /opt/conditional
3+ RUN mkdir /opt/conditional
44
55WORKDIR /opt/conditional
66
77RUN apt-get -yq update && \
8- apt-get -yq install curl git
8+ apt-get -yq install curl git
99
1010COPY package.json package-lock.json /opt/conditional/
1111
@@ -14,19 +14,20 @@ RUN npm ci
1414COPY webpack.config.js /opt/conditional
1515COPY frontend /opt/conditional/frontend
1616
17- RUN npm run webpack
17+ RUN npm run webpack
1818
1919FROM astral/uv:python3.12-bookworm-slim
2020MAINTAINER Computer Science House <webmaster@csh.rit.edu>
2121
2222WORKDIR /opt/conditional
2323
24+ RUN apt-get -yq update && \
25+ apt-get -yq install libsasl2-dev libldap2-dev libldap-common libssl-dev gcc g++ make
26+
2427COPY requirements.txt /opt/conditional
2528
26- RUN apt-get -yq update && \
27- apt-get -yq install libsasl2-dev libldap2-dev libldap-common libssl-dev gcc g++ make
28- RUN uv pip install --system -r requirements.txt
29- RUN apt-get -yq clean all
29+ RUN uv pip install --system -r requirements.txt && \
30+ apt-get -yq clean all
3031
3132ARG PORT=8080
3233ENV PORT=${PORT}
You can’t perform that action at this time.
0 commit comments