Skip to content

Commit

Permalink
update dockerignore and change email address
Browse files Browse the repository at this point in the history
  • Loading branch information
tbho committed Oct 8, 2023
1 parent 0bbcc46 commit 1b4e2d4
Show file tree
Hide file tree
Showing 2 changed files with 48 additions and 7 deletions.
53 changes: 47 additions & 6 deletions .dockerignore
Original file line number Diff line number Diff line change
@@ -1,10 +1,51 @@
_build/
deps/
.git/

# This file excludes paths from the Docker build context.
#
# By default, Docker's build context includes all files (and folders) in the
# current directory. Even if a file isn't copied into the container it is still sent to
# the Docker daemon.
#
# There are multiple reasons to exclude files from the build context:
#
# 1. Prevent nested folders from being copied into the container (ex: exclude
# /assets/node_modules when copying /assets)
# 2. Reduce the size of the build context and improve build time (ex. /build, /deps, /doc)
# 3. Avoid sending files containing sensitive information
#
# More information on using .dockerignore is available here:
# https://docs.docker.com/engine/reference/builder/#dockerignore-file

.dockerignore

# Ignore git, but keep git HEAD and refs to access current commit hash if needed:
#
# $ cat .git/HEAD | awk '{print ".git/"$2}' | xargs cat
# d0b8727759e1e0e7aa3d41707d12376e373d5ecc
.git
!.git/HEAD
!.git/refs

# Common development/test artifacts
/cover/
/doc/
/test/
/tmp/
.elixir_ls

# Mix artifacts
/_build/
/deps/
*.ez

# Generated on crash by the VM
erl_crash.dump

# Static artifacts - These should be fetched and built inside the Docker image
/assets/node_modules/
/priv/static/assets/
/priv/static/cache_manifest.json

.gitignore
Dockerfile
Makefile
README*
test/
priv/static/
hosting/
2 changes: 1 addition & 1 deletion lib/klausurarchiv_web/templates/page/index.html.slime
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ div.container
h5.subtitle.is-5 =gettext("Hint")
h6.is-6.pb-3
span = gettext("If you have any problems or suggestions, please contact:")
a.button.is-link.is-light.has-text-weight-semibold(href="mailto:gerrit.kruse@fachschaft-wiwi.ms") gerrit.kruse@fachschaft-wiwi.ms
a.button.is-link.is-light.has-text-weight-semibold(href="mailto:klausurarchiv@fachschaft-wiwi.ms") klausurarchiv@fachschaft-wiwi.ms


div.box
Expand Down

0 comments on commit 1b4e2d4

Please sign in to comment.