Skip to content

bandlapalli910/devops

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

3 Commits
 
 
 
 

Repository files navigation

FROM ubuntu:latest

Set the working directory in the image

WORKDIR /app

Copy the files from the host file system to the image file system

COPY . /app

Install the necessary packages

RUN apt-get update && apt-get install -y python3 python3-pip

Set environment variables

ENV NAME World

Run a command to start the application

CMD ["python3", "app.py"]

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published