Skip to content

Commit

Permalink
Merge pull request #26 from tj-actions/update-to-install-wheel
Browse files Browse the repository at this point in the history
Install wheel
  • Loading branch information
jackton1 authored Apr 14, 2021
2 parents c69b0b1 + 1853ec5 commit 708c4cd
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,9 +1,10 @@
FROM alpine:3.13.4
FROM python:3.9-slim-buster

LABEL maintainer="Tonye Jack <jtonye@ymail.com>"

RUN apk add bash python3 py3-pip && \
pip3 install --no-cache --upgrade pip setuptools
RUN apt-get update \
&& apt-get install -y build-essential \
&& pip3 install --no-cache --upgrade pip setuptools wheel

COPY entrypoint.sh /entrypoint.sh
RUN chmod +x /entrypoint.sh
Expand Down

0 comments on commit 708c4cd

Please sign in to comment.