Adrianux.net/Containerfile
ahoemann 9f8f0c94ff
All checks were successful
/ update (push) Successful in 1s
Update Containerfile
2025-01-28 07:43:02 +00:00

14 lines
No EOL
213 B
Docker

FROM alpine:latest
WORKDIR /opt/
ENV GIT_URL=https://git.adrianux.net
ENV WEBSITE_URL=https://adrianux.net
ENV DEBUG_MODE=False
RUN apk add go
COPY . .
RUN chmod +x website
EXPOSE 8080
CMD [ "/opt/./website" ]