Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Migrate to alpine #1

Open
wants to merge 3 commits into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 9 additions & 3 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,7 +1,13 @@
FROM ubuntu:trusty
MAINTAINER Simon Templer <[email protected]>
FROM alpine:3.4
MAINTAINER Simon Templer <[email protected]> Ivan Lisenkov <[email protected]>

# RUN echo '@testing http://nl.alpinelinux.org/alpine/edge/testing' >> /etc/apk/repositories && \
# apk add --update --no-cache curl awscli@testing bash grep
# RUN apt-get update && apt-get install -y python-pip curl && pip install awscli
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

What about these commented lines? I guess they can be removed?

Copy link
Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Yeah, these lines are here by mistake


RUN apk add --update --no-cache curl bash grep python py-pip ca-certificates tzdata tar gnupg && \
pip install awscli

RUN apt-get update && apt-get install -y python-pip curl && pip install awscli

ADD /scripts /dockup/
RUN chmod 755 /dockup/*.sh
Expand Down