Skip to content

Commit

Permalink
new: Adding dockerfiles for testing
Browse files Browse the repository at this point in the history
  • Loading branch information
anveshmuppeda committed Oct 2, 2024
1 parent bbde154 commit 5809df9
Show file tree
Hide file tree
Showing 126 changed files with 87,486 additions and 0 deletions.
Binary file added dockerfiles/.DS_Store
Binary file not shown.
15 changes: 15 additions & 0 deletions dockerfiles/blogging-application/Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
FROM ubuntu:18.04

#maintainer
LABEL maintainer="Anvesh Muppeda"

#install nginx
RUN apt-get -y update && apt-get -y install nginx

#copying files
COPY default /etc/nginx/sites-available/default
COPY . /usr/share/nginx/html/

#exposing the port
EXPOSE 80
CMD ["/usr/sbin/nginx", "-g", "daemon off;"]
Binary file not shown.
Loading

0 comments on commit 5809df9

Please sign in to comment.