mirror of
https://github.com/hrfee/jfa-go.git
synced 2024-12-22 09:00:10 +00:00
Harvey Tindall
8c4bd4541c
fixed another problem with the -data option, and added 'make headless' for use in the dockerfile
26 lines
517 B
Docker
26 lines
517 B
Docker
FROM golang:alpine
|
|
|
|
RUN apk update
|
|
|
|
RUN apk add --update make py3-pip curl sed npm build-base python3-dev
|
|
|
|
ADD . / /opt/build/
|
|
|
|
RUN (cd /opt/build; make headless)
|
|
|
|
RUN mv /opt/build/build /opt/jfa-go
|
|
|
|
RUN rm -rf /opt/build
|
|
|
|
RUN sed -i 's#id="pwrJfPath" placeholder="Folder"#id="pwrJfPath" value="/jf" disabled#g' /opt/jfa-go/data/templates/setup.html
|
|
|
|
RUN apk del py3-pip python3-dev build-base python3 nodejs npm
|
|
|
|
RUN (rm -rf /go; rm -rf /usr/local/go)
|
|
|
|
EXPOSE 8056
|
|
|
|
CMD [ "/opt/jfa-go/jfa-go", "-data", "/data" ]
|
|
|
|
|