We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5d9f9a6 commit 9cb5ff5Copy full SHA for 9cb5ff5
Dockerfile
@@ -1,15 +1,4 @@
1
-FROM ubuntu:18.04
2
-RUN apt-get update -y && apt-get install -y \
3
-python3-pip \
4
-python3-setuptools \
5
-libsystemd-dev \
6
-# Required for Postgres
7
-libpq-dev \
8
-python3-dev
9
-
10
-WORKDIR /code
11
-COPY . .
12
-RUN pip3 install -r requirements.txt
+FROM quay.io/redhat-beyond/beyond
13
EXPOSE 5000
14
15
ENTRYPOINT python3 app.py runserver > web-application.log
docker-compose.yml
@@ -1,7 +1,7 @@
version: '3.9'
services:
beyond:
- build: .
+ image: quay.io/redhat-beyond/beyond
container_name: beyond
ports:
- "5000:5000"
0 commit comments