Skip to content

Commit

Permalink
Remove specifying a shell in the Makefile
Browse files Browse the repository at this point in the history
* This is an issue when building a container image
  • Loading branch information
yunkon-kim committed Jul 18, 2024
1 parent e09ec81 commit 2123467
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ RUN make prod
## Stage 2 - Application Setup
##############################################################

FROM ubuntu:22.04 as prod
FROM ubuntu:22.04 AS prod

RUN rm /bin/sh && ln -s /bin/bash /bin/sh

Expand Down
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
SHELL := /bin/bash
# Makefile for CM-Beetle in Cloud-Barista.

MODULE_NAME := cm-beetle
PROJECT_NAME := github.com/cloud-barista/$(MODULE_NAME)
Expand Down

0 comments on commit 2123467

Please sign in to comment.