-
Notifications
You must be signed in to change notification settings - Fork 14
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
3 changed files
with
16 additions
and
10 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,12 @@ | ||
FROM ubuntu:lunar | ||
FROM ubuntu:23.04 | ||
LABEL org.opencontainers.image.source=https://github.com/jsha/unboundtest | ||
ENV DEBIAN_FRONTEND noninteractive | ||
RUN apt update && apt -y install unbound golang-go ca-certificates | ||
COPY . /unboundtest | ||
WORKDIR /unboundtest | ||
RUN GOBIN=/usr/bin go install ./ | ||
RUN mkdir -p /var/run/unboundtest | ||
COPY index.html root.key unbound.conf /var/run/unboundtest/ | ||
WORKDIR /var/run/unboundtest | ||
COPY . /unboundtest-repo | ||
WORKDIR /unboundtest-repo | ||
RUN GOBIN=/usr/bin go install . | ||
RUN mkdir -p /work/ | ||
COPY index.html root.key unbound.conf /work/ | ||
WORKDIR /work/ | ||
EXPOSE 1232 | ||
CMD ["/usr/bin/unboundtest"] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters