mirror of
https://github.com/commercialhaskell/stackage-server.git
synced 2026-01-12 12:18:29 +01:00
11 lines
223 B
Docker
11 lines
223 B
Docker
FROM ubuntu:14.04
|
|
|
|
RUN DEBIAN_FRONTEND=noninteractive apt-get update
|
|
RUN DEBIAN_FRONTEND=noninteractive apt-get install -y libpq5 libgmp10 git
|
|
|
|
ADD app /app
|
|
WORKDIR /app
|
|
|
|
ENTRYPOINT ./stackage-server Production
|
|
EXPOSE 3000
|