Hyperlink-Redirect/Dockerfile
2023-10-07 23:04:44 -04:00

19 lines
320 B
Docker

FROM rakudo-star:2023.08
# Move it
WORKDIR /opt
COPY bin/ ./bin/
COPY lib/ ./lib/
COPY META6.json ./META6.json
COPY templates/ ./templates/
# Dependency time
RUN apt-get update
RUN apt-get -y upgrade
RUN zef install --deps-only .
# Finish setting up the environment
EXPOSE 3000
CMD ["raku", "bin/hyperlink-redirect]