mirror of https://github.com/hrfee/jfa-go
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
34 lines
652 B
34 lines
652 B
FROM golang:latest
|
|
|
|
RUN apt update -y
|
|
|
|
RUN apt install build-essential python3-pip curl software-properties-common sed -y
|
|
|
|
RUN (curl -sL https://deb.nodesource.com/setup_14.x | bash -)
|
|
|
|
RUN apt install nodejs
|
|
|
|
ADD . / /opt/build/
|
|
|
|
RUN (cd /opt/build; make all)
|
|
|
|
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 apt remove python3-pip python3 nodejs -y
|
|
|
|
RUN apt purge python3-minimal nodejs -y
|
|
|
|
RUN apt autoremove -y
|
|
|
|
RUN rm -rf /usr/local/go /go
|
|
|
|
EXPOSE 8056
|
|
|
|
CMD [ "/opt/jfa-go/jfa-go", "-data", "/data" ]
|
|
|
|
|