ubnt-freifunk-map-api/Dockerfile

8 lines
193 B
Docker
Raw Permalink Normal View History

2021-01-03 16:10:57 +00:00
FROM alpine:3.12.3
2021-01-01 20:41:09 +00:00
WORKDIR /opt/
2021-01-01 14:14:03 +00:00
2024-03-18 17:57:55 +00:00
ADD ./release/ubnt-freifunk-map-api /opt/ubnt-freifunk-map-api
2021-01-01 20:41:09 +00:00
RUN chmod +x /opt/ubnt-freifunk-map-api
2021-01-01 14:14:03 +00:00
2021-01-03 20:19:14 +00:00
EXPOSE 3000
2021-01-01 20:41:09 +00:00
ENTRYPOINT [ "/opt/ubnt-freifunk-map-api" ]