ubnt-freifunk-map-api/Dockerfile

8 lines
210 B
Docker
Raw Normal View History

2021-01-01 20:41:09 +00:00
FROM alpine:latest
WORKDIR /opt/
2021-01-01 14:14:03 +00:00
2021-01-01 20:41:09 +00:00
ADD ./ubnt-freifunk-map-api /opt/ubnt-freifunk-map-api
ADD ./devices.json /opt/devices.json
RUN chmod +x /opt/ubnt-freifunk-map-api
2021-01-01 14:14:03 +00:00
2021-01-01 20:41:09 +00:00
ENTRYPOINT [ "/opt/ubnt-freifunk-map-api" ]