website/Dockerfile
Mira Kristipati 1c1c87a375
All checks were successful
/ ls (push) Successful in 4s
fix homepage css
2025-01-29 10:54:57 -05:00

12 lines
289 B
Docker

FROM alpine:latest
WORKDIR /app
# Install required packages
RUN apk add --no-cache hugo git
# Clone the website repository
RUN git clone https://git.argentumcation.com/mira/website.git /app \
&& git submodule update --init --recursive
CMD ["hugo", "server", "--bind", "0.0.0.0"]