Skip to content
Snippets Groups Projects
Commit 232a7d5d authored by Felipe D'Abrantes's avatar Felipe D'Abrantes
Browse files

Add Dockerisation files

parent 3be4b264
No related branches found
No related tags found
1 merge request!10Initialise a Scala Play project with a MongoDB controller for Feed Service
FROM sbtscala/scala-sbt:eclipse-temurin-focal-11.0.17_8_1.8.2_2.13.10
WORKDIR /feed-service/app
ADD . .
EXPOSE 9000
CMD sbt run
name := """feed-service"""
organization := "com.daily"
version := "1.0-SNAPSHOT"
version := "1.0.0"
lazy val root = (project in file(".")).enablePlugins(PlayScala)
......
version: "3.9"
services:
feed-service:
build:
context: './backend-services/feed-service'
dockerfile: Dockerfile
restart: unless-stopped
ports:
- "9001:9000"
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment