Skip to content
Snippets Groups Projects

Resolve "Table with all PDB files, to make them available to download"

Merged Remi PLANEL requested to merge table-structure-with-molstar into dev
2 files
+ 43
21
Compare changes
  • Side-by-side
  • Inline
Files
2
+ 5
5
@@ -74,10 +74,10 @@ COPY . /usr/src/app
RUN npm run generate
### STAGE: NGINX ###
FROM nginxinc/nginx-unprivileged:1.25-bookworm
RUN apt update -y && apt install rsync -y
FROM nginx:1.25-bookworm
# RUN rm -rf /usr/share/nginx/html/*
# COPY nginx.conf /etc/nginx/conf.d/default.conf
COPY --from=generate /usr/src/app/.output/public /etc/nginx/html
RUN apt update -y && apt install -y
COPY nginx.conf /etc/nginx/nginx.conf
COPY --from=generate /usr/src/app/.output/public /usr/share/nginx/html
USER nginx
CMD ["nginx", "-g", "daemon off;"]
\ No newline at end of file