-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathDockerfile
More file actions
34 lines (30 loc) · 764 Bytes
/
Dockerfile
File metadata and controls
34 lines (30 loc) · 764 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
ARG NODE_VERSION=lts
FROM node:${NODE_VERSION}-alpine
WORKDIR /work
RUN apk --no-cache add --repository=https://dl-cdn.alpinelinux.org/alpine/edge/main/ \
ca-certificates \
docker \
groff \
less \
bash \
make \
jq \
curl \
wget \
g++ \
zip \
git \
libssl3 \
openssh \
python3-dev \
python3 \
py3-pip \
aws-cli \
&& update-ca-certificates \
&& rm -rf /var/cache/apk/*
RUN rm -rf \
/usr/bin/aws_completer \
/usr/lib/python*/site-packages/awscli/data/ac.index \
/usr/lib/python*/site-packages/awscli/examples \
&& find /usr/lib/python* -name "completions-1*.json" -delete
ENTRYPOINT [ "/bin/sh", "-c" ]