-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
4 changed files
with
8 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,15 +1,15 @@ | ||
# Dockerfile to create a container with the IM client | ||
FROM alpine:3.12 | ||
LABEL maintainer="Miguel Caballer <[email protected]>" | ||
LABEL version="1.5.8" | ||
LABEL version="1.5.9" | ||
LABEL description="Container image to run the IM client. (http://www.grycap.upv.es/im)" | ||
|
||
# Install python3 | ||
RUN apk add --no-cache python3 py3-requests | ||
|
||
# Install IM client | ||
RUN apk add --no-cache py3-pip && \ | ||
pip3 install im-client==1.5.8 && \ | ||
pip3 install im-client==1.5.9 && \ | ||
apk del --no-cache py3-pip | ||
|
||
ENTRYPOINT ["/usr/bin/im_client.py"] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters