Add AWS resource, update Dockerfile.

This commit is contained in:
2023-03-10 23:07:24 -06:00
parent 500c584918
commit c930e89148
5 changed files with 247 additions and 2 deletions

View File

@ -9,6 +9,12 @@ RUN nimble build -y
FROM alpine
EXPOSE 80
RUN apk add --no-cache \
python3 \
py3-pip \
&& pip3 install --upgrade pip \
&& pip3 install --no-cache-dir awscli \
&& rm -rf /var/cache/apk/*
COPY --from=build /toclerbe/toclerbe /
COPY ministrysuite_api.config.docker.json /ministrysuite_api.config.json
CMD ["/toclerbe", "serve"]
CMD ["/toclerbe", "/toclerbe/data/urls.txt"]