Initial Dockerfile
This commit is contained in:
parent
5b0db04d34
commit
e00847d35f
18
Dockerfile
18
Dockerfile
|
@ -0,0 +1,18 @@
|
||||||
|
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]
|
Loading…
Reference in a new issue