pastebin/Dockerfile

12 lines
218 B
Docker
Raw Normal View History

2023-10-21 07:08:54 +00:00
FROM images.local/golang:latest
2023-09-30 13:47:59 +00:00
WORKDIR /app
COPY . /app
2023-10-21 07:08:54 +00:00
RUN buf generate
2023-09-30 13:47:59 +00:00
RUN cd webui && npm install && npm run build &&\
cd .. && go mod tidy && go build .
EXPOSE 38080
ENTRYPOINT [ "./pastebin", "api" ]