Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -7,15 +7,15 @@ RUN yarn build
RUN yarn --production
COPY . .

FROM pandoc/core
# CHANGE THIS LINE: Use pandoc/latex instead of pandoc/core
FROM pandoc/latex

WORKDIR /app
RUN apk add --update --no-cache nodejs
COPY --from=builder /app /app
RUN ln -s /app/docker-entrypoint.sh /usr/local/bin/

ENV HOSTNAME=0.0.0.0
ENV PORT=4000
EXPOSE 4000

ENTRYPOINT ["docker-entrypoint.sh"]
CMD ["pandoc-api"]