My Command

This commit is contained in:
Mike Nolan 2025-07-03 16:14:24 -05:00
parent 993e4f79ea
commit 80d94de8dc
2 changed files with 2 additions and 3 deletions

View File

@ -2,14 +2,13 @@ FROM onedev.site.tesses.net/crosslang/crosslangextras/crosslangextras:latest AS
WORKDIR /app WORKDIR /app
COPY . . COPY . .
RUN ls
RUN crosslang build RUN crosslang build
FROM onedev.site.tesses.net/crosslang/crosslang:latest FROM onedev.site.tesses.net/crosslang/crosslang:latest
WORKDIR /app WORKDIR /app
COPY --from=build /app/bin/cross-1.0.0.0-prod.crvm /app/ COPY --from=build /app/bin/cross-1.0.0.0-prod.crvm /app/
RUN ls
EXPOSE 4206 EXPOSE 4206

View File

@ -22,7 +22,7 @@ func Pages.Index()
<input type="text" name="text" placeholder="Text to echo"> <input type="text" name="text" placeholder="Text to echo">
<input type="submit" value="Echo it"> <input type="submit" value="Echo it">
</form> </form>
<p>This is a modified website</p> <p>This is a modified website {{</p>
<p>1 John 4:4: You, dear children, are from God and have overcome them, because the one who is in you is greater than the one who is in the world.</p> <p>1 John 4:4: You, dear children, are from God and have overcome them, because the one who is in you is greater than the one who is in the world.</p>
</section>); </section>);
} }