-
-
Save abesto/d249d7add8ef2b10b8e71b08b9690876 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
FROM golang | |
RUN go get -u github.com/gobuffalo/packr/packr | |
RUN apt-get update && apt-get install -y \ | |
build-essential \ | |
libzzip-dev \ | |
lua5.3 \ | |
lua5.3-dev \ | |
luarocks | |
RUN luarocks install luafilesystem \ | |
&& luarocks install luazip | |
COPY . /code | |
WORKDIR /code | |
RUN cd factoriocalc \ | |
&& packr build | |
RUN cd factorio-web-calc \ | |
&& git reset --hard | |
RUN git submodule update --remote factorio-web-calc |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment