-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
4 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,8 @@ | ||
FROM ubuntu:latest | ||
RUN apt-get update && apt-get install -y curl bash jq | ||
# RUN apt-get update && apt-get install -y curl bash jq | ||
WORKDIR /app | ||
COPY ./app/. /app | ||
EXPOSE 8000 | ||
RUN curl -sSL https://raw.githubusercontent.com/tailcallhq/tailcall/main/install.sh | bash -s && \ | ||
echo 'export PATH="$HOME/.tailcall/bin:$PATH"' >> ~/.bash_profile | ||
CMD /bin/bash -c "source ~/.bash_profile && tc start /app/example.graphql" | ||
RUN curl -sSL https://raw.githubusercontent.com/tailcallhq/tailcall/main/install.sh | zsh -s && \ | ||
echo 'export PATH="$HOME/.tailcall/bin:$PATH"' >> ~/.zshrc | ||
CMD /bin/zsh -c "source ~/.zshrc && tc start /app/example.graphql" |