You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
sonic/scripts/Dockerfile

28 lines
837 B
Docker

2 years ago
FROM golang:1.19.3-alpine as builder
RUN apk --no-cache add git ca-certificates gcc g++
2 years ago
WORKDIR /go/src/github.com/go-sonic/
RUN git clone --recursive --depth 1 https://github.com/go-sonic/sonic.git
WORKDIR /go/src/github.com/go-sonic/sonic
RUN GOPROXY=https://goproxy.cn CGO_ENABLED=1 GOOS=linux go build -o sonic -ldflags="-s -w" -trimpath .
2 years ago
RUN mkdir -p /app/conf && \
mkdir /app/resources && \
cp -r /go/src/github.com/go-sonic/sonic/sonic /app/ && \
2 years ago
cp -r /go/src/github.com/go-sonic/sonic/conf /app/ && \
cp -r /go/src/github.com/go-sonic/sonic/resources /app/ && \
2 years ago
cp /go/src/github.com/go-sonic/sonic/scripts/docker_init.sh /app/
FROM alpine:latest as prod
COPY --from=builder /app/ /app/
VOLUME /sonic
EXPOSE 8080
WORKDIR /sonic
CMD /app/docker_init.sh && /app/sonic -config /sonic/conf/config.yaml