Ajouter routes exemples selon figma #25

Merged
vlbeaudoin merged 3 commits from feature/squelette-routes into main 2023-03-24 18:28:37 -04:00
Showing only changes of commit ecd22ae444 - Show all commits

View file

@ -1,4 +1,4 @@
FROM golang:1.19.1 as build FROM golang:1.20.2 as build
LABEL author="vlbeaudoin" LABEL author="vlbeaudoin"
@ -8,16 +8,16 @@ COPY go.mod go.sum main.go server.go ./
ADD public/ public/ ADD public/ public/
RUN CGO_ENABLED=0 go build -a -installsuffix cgo -o app . RUN CGO_ENABLED=0 go build -a -installsuffix cgo -o agecem-org .
# Alpine # Alpine
FROM alpine:3.17.1 FROM alpine:3.17.2
RUN apk update && apk add file --no-cache && apk upgrade --no-cache RUN apk update && apk upgrade --no-cache
WORKDIR /app WORKDIR /app
COPY --from=build /go/src/app ./ COPY --from=build /go/src/app/agecem-org /usr/bin/agecem-org
CMD ["./app"] CMD ["agecem-org"]