Skip to content

Commit

Permalink
chore: remove python dep
Browse files Browse the repository at this point in the history
  • Loading branch information
imranismail committed Nov 10, 2023
1 parent 92efbbf commit c7b214d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 13 deletions.
2 changes: 1 addition & 1 deletion docker/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ FROM public.ecr.aws/ubuntu/ubuntu:23.04_stable

SHELL ["/usr/bin/env", "-S", "bash", "-cl"]

RUN apt-get update -q && apt-get install -y git curl python3 python3-pip && \
RUN apt-get update -q && apt-get install -y git curl && \
apt-get clean && \
rm -rf /var/lib/apt/lists/*

Expand Down
13 changes: 1 addition & 12 deletions docker/plugin
Original file line number Diff line number Diff line change
Expand Up @@ -36,19 +36,8 @@ init_asdf() {
echo "asdf initialization complete"
}

init_python() {
if [[ ! -f "requirements.txt" ]]; then
return
fi

echo "Initializing python..."
pip install -r requirements.txt
echo "Python initialization complete"
}

init() {
init_asdf
init_python
}

generate() {
Expand All @@ -74,4 +63,4 @@ main() {
esac
}

main "$@"
main "$@"

0 comments on commit c7b214d

Please sign in to comment.