pastebin/Dockerfile

13 lines
140 B
Docker
Raw Normal View History

2024-03-18 17:03:14 +00:00
FROM images.internal/devel:latest
2023-09-30 13:47:59 +00:00
2023-10-21 17:39:43 +00:00
WORKDIR /app
2024-03-18 17:03:14 +00:00
2023-10-21 17:39:43 +00:00
COPY . /app
2024-03-18 17:03:14 +00:00
RUN make build
EXPOSE 38002
2023-09-30 13:47:59 +00:00
2023-10-21 17:49:37 +00:00
EXPOSE 38080
2023-09-30 13:47:59 +00:00
ENTRYPOINT [ "./pastebin", "api" ]