Skip to content
Snippets Groups Projects

Added Docker setup for initial database import

Merged Felix Delattre requested to merge feature/add-docker-setup into master
Compare and
6 files
+ 266
7
Compare changes
  • Side-by-side
  • Inline
Files
6
.gitlab-ci.yml 0 → 100644
+ 12
0
image: debian:bullseye-slim
before_script:
- apt update -y
- apt install -y git make shellcheck golang-go
- export GOPATH="$HOME/go"
- export PATH="$PATH:$GOPATH/bin"
- go get -u github.com/mvdan/sh/cmd/shfmt
linters:
script:
- make check
Loading