15 lines
429 B
Text
15 lines
429 B
Text
FROM alpine:3.21
|
|
|
|
WORKDIR /app
|
|
|
|
COPY --from=antoniomika/sish /app/app /app/app
|
|
COPY --from=antoniomika/sish /tmp /tmp
|
|
COPY --from=antoniomika/sish /etc/ssl/certs/ /etc/ssl/certs/
|
|
COPY --from=antoniomika/sish /app/deploy/ /app/deploy/
|
|
COPY --from=antoniomika/sish /app/ /app/
|
|
COPY --from=antoniomika/sish /app/templates /app/templates
|
|
COPY --from=antoniomika/sish /app/ /app/
|
|
|
|
RUN apk add --no-cache bash
|
|
|
|
ENTRYPOINT ["/app/app"]
|