Fix Docker build file for high score server

Add unique gitignore files
This commit is contained in:
Michał Gdula 2023-05-15 12:52:59 +03:00
parent a86816a322
commit 578b0e728b
7 changed files with 334 additions and 175 deletions

View file

@ -1,8 +1,9 @@
# syntax=docker/dockerfile:1
FROM ubuntu:22.04
FROM alpine:latest
EXPOSE 8080
RUN apt update && apt install -y python3 python3-pip postgresql-client
# RUN apt update && apt install -y python3 python3-pip postgresql-client
RUN apk update && apk add python3 py3-pip postgresql-client
WORKDIR /data
COPY requirements.txt requirements.txt