Update Dockerfile to use the Haskell server

This commit is contained in:
Correl Roush 2022-07-12 23:23:46 -04:00
parent ce49c394dd
commit cc1ae8e395
2 changed files with 23 additions and 26 deletions

View file

@ -1,3 +1,4 @@
.git
.DS_Store
.idea
*.log
@ -13,3 +14,7 @@ www/elm-stuff
www/node_modules
www/package-lock.json
www/public/elm.js
.stack-work/
test.db
tutor.db

View file

@ -1,33 +1,28 @@
FROM python:3.9.6-alpine3.14 as base
FROM haskell:9.0.2-slim as base
WORKDIR /app
FROM base as dependencies
FROM base as builder
RUN mkdir /build
WORKDIR /build
COPY stack.yaml package.yaml stack.yaml.lock /build/
RUN stack build --system-ghc --only-dependencies
ENV PIP_DEFAULT_TIMEOUT=100 \
PIP_DISABLE_PIP_VERSION_CHECK=1 \
PIP_NO_CACHE_DIR=1 \
POETRY_VERSION=1.1.4
FROM base as build
RUN apk add --no-cache gcc libffi-dev musl-dev openssl-dev rust cargo
RUN pip install "poetry==$POETRY_VERSION"
RUN python -m venv /venv
COPY pyproject.toml poetry.lock ./
RUN poetry export -f requirements.txt | /venv/bin/pip install -r /dev/stdin
COPY . .
RUN poetry build && /venv/bin/pip install dist/*.whl
COPY --from=dependencies /root/.stack /root/.stack
COPY . /build/
WORKDIR /build
RUN stack build --system-ghc
RUN mv "$(stack path --local-install-root --system-ghc)/bin" /build/bin
FROM base as frontend
RUN apk add --no-cache curl
COPY www /www
RUN curl -sL --output elm.gz https://github.com/elm/compiler/releases/download/0.19.1/binary-for-linux-64-bit.gz \
&& gunzip elm.gz \
&& chmod +x elm \
RUN curl -sL --output /bin/elm.gz https://github.com/elm/compiler/releases/download/0.19.1/binary-for-linux-64-bit.gz \
&& gunzip /bin/elm.gz \
&& chmod +x /bin/elm \
&& cd /www \
&& /app/elm make /www/src/App.elm --output /www/public/elm.js
&& /bin/elm make /www/src/App.elm --output /www/public/elm.js
FROM base as final
@ -37,9 +32,6 @@ ENV TUTOR_PORT=8888 \
TUTOR_DATABASE=/tutor.db \
TUTOR_STATIC=/www
RUN apk add sqlite
COPY --from=builder /venv /venv
COPY --from=build /build/bin /app
COPY --from=frontend /www/public /www
COPY docker-entrypoint.sh tables.sql ./
ENTRYPOINT ["./docker-entrypoint.sh"]
CMD ["server"]
ENTRYPOINT ["/app/tutor-exe"]