Skip to content

Commit

Permalink
Create .dockerignore file #518
Browse files Browse the repository at this point in the history
    * Update system packages installed in docker image

Signed-off-by: Jono Yang <[email protected]>
  • Loading branch information
JonoYang committed Aug 8, 2024
1 parent 152d593 commit 21a684d
Show file tree
Hide file tree
Showing 2 changed files with 51 additions and 3 deletions.
39 changes: 39 additions & 0 deletions .dockerignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,39 @@

**/*.egg-info
**/.*
**/.*cache
**/.DS_Store
**/.aof
**/.aws
**/.git
**/.github
**/.gitignore
**/.idea
**/.ssh
**/.venv
**/.vscode
**/bin
**/build
**/coverage
**/dist
**/docs
**/env
**/etc
**/lib
**/var
**/venv
.dockerignore
.env
.readthedocs.yaml
CHANGELOG.rst
CODE_OF_CONDUCT.rst
Dockerfile
MANIFEST.in
Makefile
README.rst
azure-pipelines.yml
configure
docker*.env
docker-compose.*yml
pyvenv.cfg
traefik.yml
15 changes: 12 additions & 3 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -28,16 +28,25 @@ RUN apt-get update \
zlib1g \
libxml2-dev \
libxslt1-dev \
libgomp1 \
libsqlite3-0 \
libgcrypt20 \
libpopt0 \
bzip2 \
libzstd1 \
libgpgme11 \
libdevmapper1.02.1 \
libguestfs-tools \
linux-image-amd64 \
git \
wait-for-it \
universal-ctags \
gettext \
tar \
unzip \
zip \
libsasl2-dev \
libldap-dev \
openssl \
wait-for-it \
git \
cvs \
&& apt-get clean \
&& rm -rf /var/lib/apt/lists/* /tmp/* /var/tmp/*
Expand Down

0 comments on commit 21a684d

Please sign in to comment.