mirror of
https://github.com/grillazz/fastapi-sqlalchemy-asyncpg.git
synced 2026-01-17 11:40:39 +03:00
The following vulnerabilities are fixed with an upgrade: - https://snyk.io/vuln/SNYK-ALPINE322-BUSYBOX-14091698 - https://snyk.io/vuln/SNYK-ALPINE322-BUSYBOX-14091698 - https://snyk.io/vuln/SNYK-ALPINE322-BUSYBOX-14091698 - https://snyk.io/vuln/SNYK-ALPINE322-BUSYBOX-14091701 - https://snyk.io/vuln/SNYK-ALPINE322-BUSYBOX-14091701
11 lines
496 B
Docker
11 lines
496 B
Docker
# pull official base image
|
|
FROM postgres:17.7-alpine
|
|
|
|
WORKDIR /home/gx/code
|
|
|
|
COPY shakespeare_chapter.sql /home/gx/code/shakespeare_chapter.sql
|
|
COPY shakespeare_work.sql /home/gx/code/shakespeare_work.sql
|
|
COPY shakespeare_wordform.sql /home/gx/code/shakespeare_wordform.sql
|
|
COPY shakespeare_character.sql /home/gx/code/shakespeare_character.sql
|
|
COPY shakespeare_paragraph.sql /home/gx/code/shakespeare_paragraph.sql
|
|
COPY shakespeare_character_work.sql /home/gx/code/shakespeare_character_work.sql |