mirror of
https://github.com/grillazz/fastapi-sqlalchemy-asyncpg.git
synced 2025-08-26 16:40:40 +03:00
The following vulnerabilities are fixed with an upgrade: - https://snyk.io/vuln/SNYK-ALPINE321-ICU-10691539 - https://snyk.io/vuln/SNYK-ALPINE321-ICU-10691539 - https://snyk.io/vuln/SNYK-ALPINE321-LIBXML2-10123178 - https://snyk.io/vuln/SNYK-ALPINE321-LIBXML2-10123179 - https://snyk.io/vuln/SNYK-ALPINE321-LIBXML2-9380738
14 lines
565 B
Docker
14 lines
565 B
Docker
# pull official base image
|
|
FROM postgres:17.6-alpine
|
|
|
|
# run create.sql on init
|
|
ADD create.sql /docker-entrypoint-initdb.d
|
|
|
|
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 |