ubnt-freifunk-map-api/Dockerfile

8 lines
222 B
Docker
Raw 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
2021-01-02 23:45:04 +00:00
ADD ./release/*/*/ubnt-freifunk-map-api /opt/ubnt-freifunk-map-api
2021-01-01 20:41:09 +00:00
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" ]