Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
###############################################################################
FROM golang:1.23.4-alpine3.20 AS init

ENV CGO_ENABLED 0
ENV CGO_ENABLED=0
RUN apk add --update --no-cache make

ENV WORKDIR=/app
Expand Down Expand Up @@ -73,7 +73,7 @@ CMD ["make", "lint"]
###############################################################################
FROM base AS development

ENV BINDIR /usr/local/bin
ENV BINDIR=/usr/local/bin
RUN apk add --update --no-cache make

COPY ./exercises ${WORKDIR}/exercises
Expand Down
Loading