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
403 B
18 lines
403 B
FROM golang:1.19-bullseye
|
|
LABEL author="Thomas Bellembois"
|
|
|
|
# Copying sources.
|
|
WORKDIR /go/src/codefirst.iut.uca.fr/git/thomas.bellembois/codefirst-dockerrunner-client-cd/v2/
|
|
COPY . .
|
|
|
|
# Installing.
|
|
RUN go install -v ./...
|
|
RUN chmod +x /go/bin/codefirst-dockerrunner-client-cd
|
|
|
|
# Copying entrypoint.
|
|
COPY entrypoint.sh /
|
|
RUN chmod +x /entrypoint.sh
|
|
|
|
USER root
|
|
EXPOSE 8081
|
|
ENTRYPOINT [ "/entrypoint.sh" ] |