Files
fx-serverless/bundler/julia/assets/Dockerfile
Minghe 871bb29dbe Bundler (#473)
* refactor bundler
* enable unit test
2020-03-10 22:49:14 +08:00

10 lines
172 B
Docker

FROM julia:0.7
COPY . /app
RUN apt-get update && apt-get install -y gcc apt-utils unzip make libhttp-parser-dev
RUN julia /app/deps.jl
CMD julia /app/app.jl
EXPOSE 3000