mirror of
https://github.com/verdaccio/verdaccio.git
synced 2025-01-06 22:40:26 -05:00
9cf5cee4fd
* docs: copy docker examples v4 * docs: copy docker examples v4 * chore: update ignore files
10 lines
No EOL
236 B
Docker
10 lines
No EOL
236 B
Docker
FROM python:2.7
|
|
|
|
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
|
|
ENTRYPOINT ["/entry.sh"] |