GOLANG_INTERVIEW Telegram 1308
🚀 Docker + Go pro tip

Go идеально подходит для Docker, так как можно собрать статически слинкованный бинарь и запускать его в ультра-лёгком образе.


# Этап сборки
FROM golang:1.23 AS builder
WORKDIR /src
COPY . .
RUN go mod download
RUN CGO_ENABLED=0 GOOS=linux GOARCH=amd64 go build -o app .

# Финальный минимальный образ
FROM scratch
WORKDIR /app
COPY --from=builder /src/app .
ENTRYPOINT ["./app"]


💡 Такой приём:

- даёт контейнер весом в несколько МБ,
- убирает лишние зависимости,
- ускоряет доставку и запуск приложения.

@golang_interview
13🥱8👍4🔥2



tgoop.com/golang_interview/1308
Create:
Last Update:

🚀 Docker + Go pro tip

Go идеально подходит для Docker, так как можно собрать статически слинкованный бинарь и запускать его в ультра-лёгком образе.


# Этап сборки
FROM golang:1.23 AS builder
WORKDIR /src
COPY . .
RUN go mod download
RUN CGO_ENABLED=0 GOOS=linux GOARCH=amd64 go build -o app .

# Финальный минимальный образ
FROM scratch
WORKDIR /app
COPY --from=builder /src/app .
ENTRYPOINT ["./app"]


💡 Такой приём:

- даёт контейнер весом в несколько МБ,
- убирает лишние зависимости,
- ускоряет доставку и запуск приложения.

@golang_interview

BY Golang вопросы собеседований


Share with your friend now:
tgoop.com/golang_interview/1308

View MORE
Open in Telegram


Telegram News

Date: |

Deputy District Judge Peter Hui sentenced computer technician Ng Man-ho on Thursday, a month after the 27-year-old, who ran a Telegram group called SUCK Channel, was found guilty of seven charges of conspiring to incite others to commit illegal acts during the 2019 extradition bill protests and subsequent months. Today, we will address Telegram channels and how to use them for maximum benefit. The best encrypted messaging apps The imprisonment came as Telegram said it was "surprised" by claims that privacy commissioner Ada Chung Lai-ling is seeking to block the messaging app due to doxxing content targeting police and politicians. It’s yet another bloodbath on Satoshi Street. As of press time, Bitcoin (BTC) and the broader cryptocurrency market have corrected another 10 percent amid a massive sell-off. Ethereum (EHT) is down a staggering 15 percent moving close to $1,000, down more than 42 percent on the weekly chart.
from us


Telegram Golang вопросы собеседований
FROM American