golang-with-upx/Dockerfile

8 lines
176 B
Docker
Raw Normal View History

2024-03-17 08:46:02 +00:00
FROM golang:1.22.1-bookworm AS builder
2024-03-17 09:22:30 +00:00
COPY upx /usr/bin/upx
COPY migrate /usr/bin/migrate
2024-03-17 09:24:56 +00:00
RUN chmod +x /usr/bin/upx && chmod +x /usr/bin/migrate
2024-03-17 09:22:30 +00:00
RUN upx -9 /usr/bin/migrate