You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
353 B
18 lines
353 B
2 years ago
|
FROM golang:1.18-bullseye
|
||
|
LABEL author="Thomas Bellembois"
|
||
|
|
||
|
# Copying sources.
|
||
|
WORKDIR /go/src/github.com/tbellembois/codefirst-menuwrapper/
|
||
|
COPY . .
|
||
|
|
||
|
# Installing.
|
||
|
RUN go install -v ./...
|
||
|
RUN chmod +x /go/bin/codefirst-menuwrapper
|
||
|
|
||
|
# Copying entrypoint.
|
||
|
COPY entrypoint.sh /
|
||
|
RUN chmod +x /entrypoint.sh
|
||
|
|
||
|
USER www-data
|
||
|
EXPOSE 8081
|
||
|
CMD ["/entrypoint.sh"]
|