diff --git a/Dockerfile b/Dockerfile index 748e4bb..56bddb3 100644 --- a/Dockerfile +++ b/Dockerfile @@ -4,7 +4,7 @@ WORKDIR /app RUN apk add --no-cache git bash -COPY src/go.mod src/go.sum ./ +COPY go.mod go.sum ./ RUN go mod download COPY src/ . @@ -19,8 +19,7 @@ WORKDIR /app COPY --from=builder /app/server . -COPY --from=builder /app/templates ./templates -COPY --from=builder /app/uploads ./uploads +COPY templates ./templates EXPOSE 8080