diff --git a/Dockerfile b/Dockerfile index d44f689..b366d13 100644 --- a/Dockerfile +++ b/Dockerfile @@ -4,5 +4,6 @@ COPY . . RUN CGO_ENABLED=0 GOOS=linux GOARCH=amd64 go build -ldflags="-w -s" . FROM scratch WORKDIR /app -COPY --from=builder /app/medication /usr/bin/ -ENTRYPOINT ["medication"] \ No newline at end of file +COPY --from=builder /app/index.html /app/ +COPY --from=builder /app/medication /app/ +ENTRYPOINT ["/app/medication"] \ No newline at end of file