Skip to content

Commit

Permalink
add hvvstuhl.de dockerfile
Browse files Browse the repository at this point in the history
  • Loading branch information
lilioid committed Jun 4, 2024
1 parent 0159e42 commit 3ea4b65
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions hvvstuhl/Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
FROM docker.io/debian:bullseye-slim as git
RUN apt-get update &&\
apt-get install -y git ca-certificates &&\
git clone https://git.kritzl.dev/kritzl/hvvstuhl.de.git /usr/src/hvvstuhl.de/



FROM docker.io/nginx:mainline
COPY --from=git /usr/src/hvvstuhl.de/ /usr/src/hvvstuhl.de/
RUN rm -rf /usr/share/nginx/html &&\
ln -sf /usr/src/hvvstuhl.de/ /usr/share/nginx/html
EXPOSE 80/tcp

0 comments on commit 3ea4b65

Please sign in to comment.