12 lines
270 B
Docker
12 lines
270 B
Docker
FROM harbor.gitea.party/public-message-service/alpine:latest
|
|
|
|
RUN apk update && apk add bash && apk add --no-cache coreutils
|
|
|
|
WORKDIR /app/public-message-service
|
|
|
|
COPY public-message-service .
|
|
COPY config.yaml ./config.yaml
|
|
|
|
EXPOSE 8889
|
|
|
|
CMD ["./public-message-service"] |