18c5223143
Added the_form to the Page Editor. Added a phrase for the Menu Editor title rather than reusing the Menu Manager's one. Replaced a dotted border I missed in Tempra Simple. Fixed a floater in the User Manager for Shadow. Tweaked the form CSS for Nox. Tweaked panel_submitrow in Nox. Continued work on the User Manager for Nox.
8 lines
184 B
Docker
8 lines
184 B
Docker
FROM golang:1.10
|
|
RUN git clone https://github.com/Azareal/Gosora
|
|
RUN mv Gosora app
|
|
ADD . /app/
|
|
WORKDIR /app
|
|
RUN ./update-deps-linux
|
|
ENTRYPOINT ["install-docker"]
|
|
CMD ["/app/run-linux"] |