pastebin/Dockerfile

13 lines
140 B
Docker

FROM images.internal/devel:latest
WORKDIR /app
COPY . /app
RUN make build
EXPOSE 38002
EXPOSE 38080
ENTRYPOINT [ "./pastebin", "api" ]