0
Fork 0
mirror of https://github.com/verdaccio/verdaccio.git synced 2025-01-06 22:40:26 -05:00
verdaccio/docker-examples/v4/amazon-s3-docker-example/localStack-resources/Dockerfile

11 lines
244 B
Text
Raw Normal View History

2021-11-19 13:47:27 -05:00
FROM python:3.7-alpine
ENV AWS_ACCESS_KEY_ID='[something]'
ENV AWS_SECRET_ACCESS_KEY='[something]'
ENV AWS_S3_ENDPOINT='http://localstack-s3:4572'
RUN pip install awscli
COPY entry.sh /entry.sh
RUN chmod +x /entry.sh
2021-11-19 13:47:27 -05:00
ENTRYPOINT ["/entry.sh"]